home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / include / funcs / wb_funcs.h < prev   
Encoding:
C/C++ Source or Header  |  1996-08-28  |  1.4 KB  |  44 lines

  1. #ifndef  FUNCS_WB_FUNCS_H
  2. #define  FUNCS_WB_FUNCS_H
  3.  
  4. /*
  5. **
  6. ** Function declarations for ACE Basic
  7. **
  8. ** Note: Translated to ACE by Nils Sjoholm
  9. **
  10. ** Date: 11-Oct-95 TO 14-Oct-95
  11. **
  12. */              
  13.  
  14. /*--- functions in V36 OR higher (Release 2.0) ---*/
  15. #ifndef  EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18.  
  19. DECLARE FUNCTION STRUCTPTR AddAppWindowA( LONGINT id, LONGINT userdata, \
  20.                                           STRUCTPTR _window, STRUCTPTR msgport, \
  21.                                           STRUCTPTR taglist ) LIBRARY workbench
  22.  
  23. DECLARE FUNCTION BOOL RemoveAppWindow( STRUCTPTR appWindow ) LIBRARY workbench
  24.  
  25. DECLARE FUNCTION STRUCTPTR AddAppIconA( LONGINT id, LONGINT userdata, \
  26.                                         ADDRESS text, STRUCTPTR msgport, \
  27.                                         STRUCTPTR lock, STRUCTPTR diskobj, \
  28.                                         STRUCTPTR taglist ) LIBRARY workbench
  29.  
  30. DECLARE FUNCTION BOOL RemoveAppIcon( STRUCTPTR appIcon ) LIBRARY workbench
  31.  
  32. DECLARE FUNCTION STRUCTPTR AddAppMenuItemA( LONGINT id, LONGINT userdata, \
  33.                                            ADDRESS text, STRUCTPTR msgport, STRUCTPTR taglist ) LIBRARY workbench
  34.  
  35. DECLARE FUNCTION BOOL RemoveAppMenuItem( STRUCTPTR appMenuItem ) LIBRARY workbench
  36.  
  37. /*--- functions in V39 OR higher (Release 3) ---*/
  38.  
  39.  
  40. DECLARE FUNCTION WBInfo( BPTR lock, STRPTR _NAME, STRUCTPTR _SCREEN ) LIBRARY workbench
  41.  
  42.  
  43. #endif   /* FUNCS_WB_FUNCS_H */
  44.